update AppImage build comment text
authorJyrki Gadinger <nilsding@nilsding.org>
Thu, 23 Jan 2025 15:02:47 +0000 (16:02 +0100)
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>
Fri, 24 Jan 2025 08:08:02 +0000 (09:08 +0100)
Signed-off-by: Jyrki Gadinger <nilsding@nilsding.org>
.github/workflows/linux-appimage.yml

index a5f1aef032e03b31b321f0218375fe0d61f2cd18..0269dce0f1201e52ed86d76d27fb8cd876c6d58b 100644 (file)
@@ -23,9 +23,10 @@ jobs:
         id: upload-appimage
         uses: actions/upload-artifact@v4
         with:
-          name: appimage-pr-${{ github.event.number }}
+          name: nextcloud-appimage-pr-${{ github.event.number }}
           path: ${{ steps.build-appimage.outputs.APPIMAGE_NAME }}
           overwrite: true
+          compression-level: 0 # squashfs is already compressed
 
       - name: Comment AppImage
         uses: actions/github-script@v7
@@ -36,9 +37,11 @@ jobs:
             const comment_body = `
               ${comment_identifier_string}
 
-              AppImage file: [${{ steps.build-appimage.outputs.APPIMAGE_NAME }}](${{ steps.upload-appimage.outputs.artifact-url }})
+              Artifact containing the AppImage: [nextcloud-appimage-pr-${{ github.event.number }}.zip](${{ steps.upload-appimage.outputs.artifact-url }})
 
-              To test this change/fix you can simply download above AppImage file and test it.
+              SHA256 checksum: \`${{ steps.upload-appimage.outputs.artifact-digest }}\`
+
+              To test this change/fix you can download the above artifact file, unzip it, and run it.
 
               Please make sure to quit your existing Nextcloud app and backup your data.
             `;